home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Examples / 32BitAExamples / MakeFile < prev   
Encoding:
Makefile  |  1998-12-03  |  674 b   |  27 lines  |  [TEXT/MPS ]

  1. #    MakeFile    -  Make instructions for assembly language examples.
  2. #
  3. #    Copyright Apple Computer, Inc. 1986-1991
  4. #    All rights reserved.
  5. #
  6. #    This makefile builds a '32-bit everything' Assembler version of 
  7. #    the MPW Tool 'count'.
  8. #        The sample MPW Tool:            Count
  9.  
  10. Count            ƒƒ    Count.r
  11.     Rez Count.r -o Count -append
  12. Count            ƒƒ    Count.a.o FStubs.a.o
  13.     Link -w -model far -c  'MPS ' -t MPST Count.a.o FStubs.a.o ∂
  14.         -sn INTENV=Main ∂
  15.         -sn %A5Init=Main ∂
  16.         "{Libraries}"Stubs.o ∂
  17.         "{Libraries}"MacRuntime.o ∂
  18.         "{Libraries}"IntEnv.o ∂
  19.         "{Libraries}"ToolLibs.o ∂
  20.         "{Libraries}"Interface.o ∂
  21.         -o Count
  22. Count.a.o        ƒ    Count.a
  23.     Asm -model far Count.a
  24. FStubs.a.o        ƒ    FStubs.a
  25.     Asm FStubs.a
  26.  
  27.